home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / tm301_2.zip / WILDCAT.SCR < prev    next >
Text File  |  1992-01-03  |  860b  |  39 lines

  1. ;
  2. ; WILDCAT.SCR is a log on script file for Wildcat BBS
  3. ;
  4.  
  5. FirstName = "first"          ; put your name here
  6. LastName = "last"
  7.  
  8. SkipToMainMenu = 1           ; bypass all the bulletin, 0 for manual operation
  9.  
  10. Set AutoStop,On              ; stop script if carrier is lost
  11. Waitfor 0                    ; unlimited waiting time
  12.  
  13. if SkipToMainMenu            ; bypass front-end messager
  14.    When "escape","^[^["
  15.    When "<esc> twice","^[^["
  16.    When "esc key","^[^["
  17.    When "[N]onStop:","s"     ; skip all the bulletin
  18.    When "press return","^M"
  19.    When "press [Enter]","^M"
  20. endif
  21.  
  22. Waitfor "What is your First Name"
  23. Put FirstName
  24.  
  25. Waitfor "What is your Last Name"
  26. Put LastName
  27.  
  28. Waitfor "Password: "
  29. Put "^&"
  30.  
  31. if SkipToMainMenu
  32.    WhenIdle 5,"^M"
  33.    Waitfor "bulletin menu [y/N]? ",120
  34.    if found
  35.       Put "n"
  36.    endif
  37. endif
  38.  
  39.